f595e60f90d7af3e80b56f4407368c8a103f0067,core/src/main/java/org/mule/endpoint/DefaultEndpointFactory.java,DefaultEndpointFactory,getInboundEndpoint,#EndpointBuilder#,82

Before Change



    public InboundEndpoint getInboundEndpoint(EndpointBuilder builder) throws MuleException
    {
        InboundEndpoint endpoint = builder.buildInboundEndpoint();
        return (InboundEndpoint) registerEndpoint(endpoint);
    }

    public OutboundEndpoint getOutboundEndpoint(EndpointBuilder builder) throws MuleException

After Change



    public InboundEndpoint getInboundEndpoint(EndpointBuilder builder) throws MuleException
    {
        return builder.buildInboundEndpoint();
    }

    public OutboundEndpoint getOutboundEndpoint(EndpointBuilder builder) throws MuleException